home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-07 / rbconf.zip / RBCONFIG.DOC < prev    next >
Text File  |  1991-08-26  |  3KB  |  88 lines

  1. [ RBCONFIG.DOC - Dynamic RPL CONFIG.SYS Driver Documentation - 28-Aug-1991 ]
  2.  
  3.  
  4. Although LANtastic (tm) supports remote program loading (RPL), which allows
  5. diskless workstations to boot MS-DOS from a diskette image stored on a
  6. network server, all workstations on a network must share the same boot
  7. image and consequently, the same CONFIG.SYS file. This makes it impossible
  8. to load different device drivers or set different tuning parameters (FILES=,
  9. BUFFERS=, etc.) based on each workstation's intended use.
  10.  
  11. RBCONFIG.SYS overcomes this limitation by allowing you to specify, on a
  12. node address basis, the exact CONFIG.SYS statements to apply to each
  13. workstation at boot time. RBCONFIG.SYS is loaded as the first item in
  14. CONFIG.SYS, and the various sections of CONFIG.SYS statements are separated
  15. by special keyword lines. To illustrate how this works,examine the
  16. following CONFIG.SYS file:
  17.  
  18.  
  19.         DEVICE=A:\RBCONFIG.SYS
  20.         SHELL=a:\COMMAND.COM /p /e:800
  21.         FILES=50
  22.         REM !NODE 00006E123456
  23.         REM !NODE 00006E123457
  24.         REM !NODE 00006E123458
  25.         DEVICE=A:\ANSI.SYS
  26.         REM !GLOBAL
  27.         REM !NODE 00006E123459
  28.         device=A:\HIMEM.SYS /m:2
  29.         REM !GLOBAL
  30.         BUFFERS=32
  31.         REM !NODE NONE
  32.         device=A:\ramdrive.sys
  33.         REM !GLOBAL
  34.         LASTDRIVE=Z
  35.         FCBS=16,8
  36.         REM !END
  37.  
  38. The result of using this CONFIG.SYS file is:
  39.  
  40.    1> All nodes will execute the following lines:
  41.  
  42.         SHELL=a:\COMMAND.COM /p /e:800
  43.         FILES=50
  44.         BUFFERS=32
  45.         LASTDRIVE=Z
  46.         FCBS=16,8
  47.  
  48.    2> Nodes 00006E123456, 00006E123457, and 00006E123458 will execute:
  49.  
  50.         DEVICE=A:\ANSI.SYS
  51.  
  52.    3> Node 00006E123459 will execute:
  53.  
  54.         device=A:\HIMEM.SYS /m:2
  55.  
  56.    4> Any node which is not RPL'ed (i.e., has no NETBIOS running at boot
  57.       time) will execute:
  58.  
  59.         device=A:\ramdrive.sys
  60.  
  61.  
  62. The following rules apply when parsing the CONFIG.SYS file:
  63.  
  64.     1> The "REM !END" statement must be present and should be the last
  65.        line in the CONFIG.SYS file.
  66.  
  67.     2> Lines occuring before DEVICE=RBCONFIG.SYS are global and will be
  68.        present for all nodes.
  69.  
  70.     3> Lines occuring after DEVICE=RBCONFIG.SYS, but before the first
  71.        "REM !NODE" statement are global and will be present for all nodes.
  72.  
  73.     4> Lines occurring after "REM !GLOBAL", but before the next "REM !NODE"
  74.        statement, are global and will be present for all nodes.
  75.  
  76.     5> Any lines not defined by (2) to (4) above is LOCAL, and will only
  77.        be included if a "REM !NODE" statement (which matches the adapter
  78.        ID number) preceeds the line without an intervening "REM !GLOBAL"
  79.        statement.
  80.  
  81.     6> Node IDs in the "REM !NODE" statement must be 12 hex digits with
  82.        leading zeroes. The special Node ID "NONE" is used to designate a
  83.        node that is not remote booted.
  84.  
  85.           
  86. [ End RBCONFIG.DOC ]
  87.  
  88.